+Mon Aug 2 01:02:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed):
+ (gdk_check_wm_desktop_changed): Add missing error
+ traps. (#149011, Thomas Leonard)
+
Mon Aug 2 00:21:26 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (blink_cb): Add the same warning
+Mon Aug 2 01:02:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed):
+ (gdk_check_wm_desktop_changed): Add missing error
+ traps. (#149011, Thomas Leonard)
+
Mon Aug 2 00:21:26 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (blink_cb): Add the same warning
+Mon Aug 2 01:02:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed):
+ (gdk_check_wm_desktop_changed): Add missing error
+ traps. (#149011, Thomas Leonard)
+
Mon Aug 2 00:21:26 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (blink_cb): Add the same warning
+Mon Aug 2 01:02:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gdk/x11/gdkevents-x11.c (gdk_check_wm_state_changed):
+ (gdk_check_wm_desktop_changed): Add missing error
+ traps. (#149011, Thomas Leonard)
+
Mon Aug 2 00:21:26 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (blink_cb): Add the same warning
{
gulong *desktop;
+ type = None;
+ gdk_error_trap_push ();
XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display),
GDK_WINDOW_XID (window),
gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_DESKTOP"),
0, G_MAXLONG, False, XA_CARDINAL, &type,
&format, &nitems,
&bytes_after, (guchar **)&desktop);
+ gdk_error_trap_pop ();
if (type != None)
{
toplevel->have_maxhorz = FALSE;
toplevel->have_fullscreen = FALSE;
+ type = None;
+ gdk_error_trap_push ();
XGetWindowProperty (GDK_DISPLAY_XDISPLAY (display), GDK_WINDOW_XID (window),
gdk_x11_get_xatom_by_name_for_display (display, "_NET_WM_STATE"),
0, G_MAXLONG, False, XA_ATOM, &type, &format, &nitems,
&bytes_after, (guchar **)&atoms);
+ gdk_error_trap_pop ();
if (type != None)
{